home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 November / SGI Freeware 1999 November - Disc 1.iso / dist / fw_cvs.idb / usr / freeware / info / cvsclient.info-2.z / cvsclient.info-2 (.txt)
GNU Info File  |  1999-04-16  |  47KB  |  843 lines

  1. This is Info file cvsclient.info, produced by Makeinfo version 1.67
  2. from the input file ./cvsclient.texi.
  3. File: cvsclient.info,  Node: Requests,  Next: Response intro,  Prev: Request intro,  Up: Protocol
  4. Requests
  5. ========
  6.    Here are the requests:
  7. `Root PATHNAME \n'
  8.      Response expected: no.  Tell the server which `CVSROOT' to use.
  9.      Note that PATHNAME is a local directory and *not* a fully
  10.      qualified `CVSROOT' variable.  PATHNAME must already exist; if
  11.      creating a new root, use the `init' request, not `Root'.  PATHNAME
  12.      does not include the hostname of the server, how to access the
  13.      server, etc.; by the time the CVS protocol is in use, connection,
  14.      authentication, etc., are already taken care of.
  15.      The `Root' request must be sent only once, and it must be sent
  16.      before any requests other than `Valid-responses',
  17.      `valid-requests', `UseUnchanged', or `init'.
  18. `Valid-responses REQUEST-LIST \n'
  19.      Response expected: no.  Tell the server what responses the client
  20.      will accept.  request-list is a space separated list of tokens.
  21. `valid-requests \n'
  22.      Response expected: yes.  Ask the server to send back a
  23.      `Valid-requests' response.
  24. `Directory LOCAL-DIRECTORY \n'
  25.      Additional data: REPOSITORY \n.  Response expected: no.  Tell the
  26.      server what directory to use.  The REPOSITORY should be a
  27.      directory name from a previous server response.  Note that this
  28.      both gives a default for `Entry' and `Modified' and also for `ci'
  29.      and the other commands; normal usage is to send `Directory' for
  30.      each directory in which there will be an `Entry' or `Modified',
  31.      and then a final `Directory' for the original directory, then the
  32.      command.  The LOCAL-DIRECTORY is relative to the top level at
  33.      which the command is occurring (i.e. the last `Directory' which is
  34.      sent before the command); to indicate that top level, `.' should
  35.      be sent for LOCAL-DIRECTORY.
  36.      Here is an example of where a client gets REPOSITORY and
  37.      LOCAL-DIRECTORY.  Suppose that there is a module defined by
  38.           moddir 1dir
  39.      That is, one can check out `moddir' and it will take `1dir' in the
  40.      repository and check it out to `moddir' in the working directory.
  41.      Then an initial check out could proceed like this:
  42.           C: Root /home/kingdon/zwork/cvsroot
  43.           . . .
  44.           C: Argument moddir
  45.           C: Directory .
  46.           C: /home/kingdon/zwork/cvsroot
  47.           C: co
  48.           S: Clear-sticky moddir/
  49.           S: /home/kingdon/zwork/cvsroot/1dir/
  50.           . . .
  51.           S: ok
  52.      In this example the response shown is `Clear-sticky', but it could
  53.      be another response instead.  Note that it returns two pathnames.
  54.      The first one, `moddir/', indicates the working directory to check
  55.      out into.  The second one, ending in `1dir/', indicates the
  56.      directory to pass back to the server in a subsequent `Directory'
  57.      request.  For example, a subsequent `update' request might look
  58.      like:
  59.           C: Directory moddir
  60.           C: /home/kingdon/zwork/cvsroot/1dir
  61.           . . .
  62.           C: update
  63.      For a given LOCAL-DIRECTORY, the repository will be the same for
  64.      each of the responses, so one can use the repository from whichever
  65.      response is most convenient.  Typically a client will store the
  66.      repository along with the sources for each LOCAL-DIRECTORY, use
  67.      that same setting whenever operating on that LOCAL-DIRECTORY, and
  68.      not update the setting as long as the LOCAL-DIRECTORY exists.
  69.      A client is free to rename a LOCAL-DIRECTORY at any time (for
  70.      example, in response to an explicit user request).  While it is
  71.      true that the server supplies a LOCAL-DIRECTORY to the client, as
  72.      noted above, this is only the default place to put the directory.
  73.      Of course, the various `Directory' requests for a single command
  74.      (for example, `update' or `ci' request) should name a particular
  75.      directory with the same LOCAL-DIRECTORY.
  76.      Each `Directory' request specifies a brand-new LOCAL-DIRECTORY and
  77.      REPOSITORY; that is, LOCAL-DIRECTORY and REPOSITORY are never
  78.      relative to paths specified in any previous `Directory' request.
  79. `Max-dotdot LEVEL \n'
  80.      Response expected: no.  Tell the server that LEVEL levels of
  81.      directories above the directory which `Directory' requests are
  82.      relative to will be needed.  For example, if the client is
  83.      planning to use a `Directory' request for `../../foo', it must
  84.      send a `Max-dotdot' request with a LEVEL of at least 2.
  85.      `Max-dotdot' must be sent before the first `Directory' request.
  86. `Static-directory \n'
  87.      Response expected: no.  Tell the server that the directory most
  88.      recently specified with `Directory' should not have additional
  89.      files checked out unless explicitly requested.  The client sends
  90.      this if the `Entries.Static' flag is set, which is controlled by
  91.      the `Set-static-directory' and `Clear-static-directory' responses.
  92. `Sticky TAGSPEC \n'
  93.      Response expected: no.  Tell the server that the directory most
  94.      recently specified with `Directory' has a sticky tag or date
  95.      TAGSPEC.  The first character of TAGSPEC is `T' for a tag, or `D'
  96.      for a date.  The remainder of TAGSPEC contains the actual tag or
  97.      date.
  98.      The server should remember `Static-directory' and `Sticky'
  99.      requests for a particular directory; the client need not resend
  100.      them each time it sends a `Directory' request for a given
  101.      directory.  However, the server is not obliged to remember them
  102.      beyond the context of a single command.
  103. `Checkin-prog PROGRAM \n'
  104.      Response expected: no.  Tell the server that the directory most
  105.      recently specified with `Directory' has a checkin program PROGRAM.
  106.      Such a program would have been previously set with the
  107.      `Set-checkin-prog' response.
  108. `Update-prog PROGRAM \n'
  109.      Response expected: no.  Tell the server that the directory most
  110.      recently specified with `Directory' has an update program PROGRAM.
  111.      Such a program would have been previously set with the
  112.      `Set-update-prog' response.
  113. `Entry ENTRY-LINE \n'
  114.      Response expected: no.  Tell the server what version of a file is
  115.      on the local machine.  The name in ENTRY-LINE is a name relative
  116.      to the directory most recently specified with `Directory'.  If the
  117.      user is operating on only some files in a directory, `Entry'
  118.      requests for only those files need be included.  If an `Entry'
  119.      request is sent without `Modified', `Is-modified', or `Unchanged',
  120.      it means the file is lost (does not exist in the working
  121.      directory).  If both `Entry' and one of `Modified', `Is-modified',
  122.      or `Unchanged' are sent for the same file, `Entry' must be sent
  123.      first.  For a given file, one can send `Modified', `Is-modified',
  124.      or `Unchanged', but not more than one of these three.
  125. `Kopt OPTION \n'
  126.      This indicates to the server which keyword expansion options to
  127.      use for the file specified by the next `Modified' or `Is-modified'
  128.      request (for example `-kb' for a binary file).  This is similar to
  129.      `Entry', but is used for a file for which there is no entries line.
  130.      Typically this will be a file being added via an `add' or `import'
  131.      request.  The client may not send both `Kopt' and `Entry' for the
  132.      same file.
  133. `Modified FILENAME \n'
  134.      Response expected: no.  Additional data: mode, \n, file
  135.      transmission.  Send the server a copy of one locally modified
  136.      file.  FILENAME is relative to the most recent repository sent
  137.      with `Directory'.  If the user is operating on only some files in
  138.      a directory, only those files need to be included.  This can also
  139.      be sent without `Entry', if there is no entry for the file.
  140. `Is-modified FILENAME \n'
  141.      Response expected: no.  Additional data: none.  Like `Modified',
  142.      but used if the server only needs to know whether the file is
  143.      modified, not the contents.
  144.      The commands which can take `Is-modified' instead of `Modified'
  145.      with no known change in behavior are: `admin', `diff' (if and only
  146.      if two `-r' or `-D' options are specified), `watch-on',
  147.      `watch-off', `watch-add', `watch-remove', `watchers', `editors',
  148.      `log', and `annotate'.
  149.      For the `status' command, one can send `Is-modified' but if the
  150.      client is using imperfect mechanisms such as timestamps to
  151.      determine whether to consider a file modified, then the behavior
  152.      will be different.  That is, if one sends `Modified', then the
  153.      server will actually compare the contents of the file sent and the
  154.      one it derives from to determine whether the file is genuinely
  155.      modified.  But if one sends `Is-modified', then the server takes
  156.      the client's word for it.  A similar situation exists for `tag',
  157.      if the `-c' option is specified.
  158.      Commands for which `Modified' is necessary are `co', `ci',
  159.      `update', and `import'.
  160.      Commands which do not need to inform the server about a working
  161.      directory, and thus should not be sending either `Modified' or
  162.      `Is-modified': `rdiff', `rtag', `history', `init', and `release'.
  163.      Commands for which further investigation is warranted are:
  164.      `remove', `add', and `export'.  Pending such investigation, the
  165.      more conservative course of action is to stick to `Modified'.
  166. `Unchanged FILENAME \n'
  167.      Response expected: no.  Tell the server that FILENAME has not been
  168.      modified in the checked out directory.  The name is relative to
  169.      the most recent repository sent with `Directory'.
  170. `UseUnchanged \n'
  171.      Response expected: no.  To specify the version of the protocol
  172.      described in this document, servers must support this request
  173.      (although it need not do anything) and clients must issue it.
  174. `Notify FILENAME \n'
  175.      Response expected: no.  Tell the server that a `edit' or `unedit'
  176.      command has taken place.  The server needs to send a `Notified'
  177.      response, but such response is deferred until the next time that
  178.      the server is sending responses.  Response expected: no.
  179.      Additional data:
  180.           NOTIFICATION-TYPE \t TIME \t CLIENTHOST \t
  181.           WORKING-DIR \t WATCHES \n
  182.      where NOTIFICATION-TYPE is `E' for edit, `U' for unedit, undefined
  183.      behavior if `C', and all other letters should be silently ignored
  184.      for future expansion.  TIME is the time at which the edit or
  185.      unedit took place, in a user-readable format of the client's
  186.      choice (the server should treat the time as an opaque string
  187.      rather than interpreting it).  CLIENTHOST is the name of the host
  188.      on which the edit or unedit took place, and WORKING-DIR is the
  189.      pathname of the working directory where the edit or unedit took
  190.      place.  WATCHES are the temporary watches to set.  If WATCHES is
  191.      followed by \t then the \t and the rest of the line should be
  192.      ignored, for future expansion.
  193.      Note that a client may be capable of performing an `edit' or
  194.      `unedit' operation without connecting to the server at that time,
  195.      and instead connecting to the server when it is convenient (for
  196.      example, when a laptop is on the net again) to send the `Notify'
  197.      requests.  Even if a client is capable of deferring notifications,
  198.      it should attempt to send them immediately (one can send `Notify'
  199.      requests together with a `noop' request, for example), unless
  200.      perhaps if it can know that a connection would be impossible.
  201. `Questionable FILENAME \n'
  202.      Response expected: no.  Additional data: no.  Tell the server to
  203.      check whether FILENAME should be ignored, and if not, next time the
  204.      server sends responses, send (in a `M' response) `?' followed by
  205.      the directory and filename.  FILENAME must not contain `/'; it
  206.      needs to be a file in the directory named by the most recent
  207.      `Directory' request.
  208. `Case \n'
  209.      Response expected: no.  Tell the server that filenames should be
  210.      matched in a case-insensitive fashion.  Note that this is not the
  211.      primary mechanism for achieving case-insensitivity; for the most
  212.      part the client keeps track of the case which the server wants to
  213.      use and takes care to always use that case regardless of what the
  214.      user specifies.  For example the filenames given in `Entry' and
  215.      `Modified' requests for the same file must match in case
  216.      regardless of whether the `Case' request is sent.  The latter
  217.      mechanism is more general (it could also be used for 8.3
  218.      filenames, VMS filenames with more than one `.', and any other
  219.      situation in which there is a predictable mapping between
  220.      filenames in the working directory and filenames in the protocol),
  221.      but there are some situations it cannot handle (ignore patterns, or
  222.      situations where the user specifies a filename and the client does
  223.      not know about that file).
  224. `Argument TEXT \n'
  225.      Response expected: no.  Save argument for use in a subsequent
  226.      command.  Arguments accumulate until an argument-using command is
  227.      given, at which point they are forgotten.
  228. `Argumentx TEXT \n'
  229.      Response expected: no.  Append \n followed by text to the current
  230.      argument being saved.
  231. `Global_option OPTION \n'
  232.      Response expected: no.  Transmit one of the global options `-q',
  233.      `-Q', `-l', `-t', `-r', or `-n'.  OPTION must be one of those
  234.      strings, no variations (such as combining of options) are allowed.
  235.      For graceful handling of `valid-requests', it is probably better
  236.      to make new global options separate requests, rather than trying
  237.      to add them to this request.
  238. `Gzip-stream LEVEL \n'
  239.      Response expected: no.  Use zlib (RFC 1950/1951) compression to
  240.      compress all further communication between the client and the
  241.      server.  After this request is sent, all further communication
  242.      must be compressed.  All further data received from the server
  243.      will also be compressed.  The LEVEL argument suggests to the
  244.      server the level of compression that it should apply; it should be
  245.      an integer between 1 and 9, inclusive, where a higher number
  246.      indicates more compression.
  247. `Kerberos-encrypt \n'
  248.      Response expected: no.  Use Kerberos encryption to encrypt all
  249.      further communication between the client and the server.  This
  250.      will only work if the connection was made over Kerberos in the
  251.      first place.  If both the `Gzip-stream' and the `Kerberos-encrypt'
  252.      requests are used, the `Kerberos-encrypt' request should be used
  253.      first.  This will make the client and server encrypt the
  254.      compressed data, as opposed to compressing the encrypted data.
  255.      Encrypted data is generally incompressible.
  256.      Note that this request does not fully prevent an attacker from
  257.      hijacking the connection, in the sense that it does not prevent
  258.      hijacking the connection between the initial authentication and the
  259.      `Kerberos-encrypt' request.
  260. `Gssapi-encrypt \n'
  261.      Response expected: no.  Use GSSAPI encryption to encrypt all
  262.      further communication between the client and the server.  This
  263.      will only work if the connection was made over GSSAPI in the first
  264.      place.  See `Kerberos-encrypt', above, for the relation between
  265.      `Gssapi-encrypt' and `Gzip-stream'.
  266.      Note that this request does not fully prevent an attacker from
  267.      hijacking the connection, in the sense that it does not prevent
  268.      hijacking the connection between the initial authentication and the
  269.      `Gssapi-encrypt' request.
  270. `Gssapi-authenticate \n'
  271.      Response expected: no.  Use GSSAPI authentication to authenticate
  272.      all further communication between the client and the server.  This
  273.      will only work if the connection was made over GSSAPI in the first
  274.      place.  Encrypted data is automatically authenticated, so using
  275.      both `Gssapi-authenticate' and `Gssapi-encrypt' has no effect
  276.      beyond that of `Gssapi-encrypt'.  Unlike encrypted data, it is
  277.      reasonable to compress authenticated data.
  278.      Note that this request does not fully prevent an attacker from
  279.      hijacking the connection, in the sense that it does not prevent
  280.      hijacking the connection between the initial authentication and the
  281.      `Gssapi-authenticate' request.
  282. `Set VARIABLE=VALUE \n'
  283.      Response expected: no.  Set a user variable VARIABLE to VALUE.
  284. `expand-modules \n'
  285.      Response expected: yes.  Expand the modules which are specified in
  286.      the arguments.  Returns the data in `Module-expansion' responses.
  287.      Note that the server can assume that this is checkout or export,
  288.      not rtag or rdiff; the latter do not access the working directory
  289.      and thus have no need to expand modules on the client side.
  290.      Expand may not be the best word for what this request does.  It
  291.      does not necessarily tell you all the files contained in a module,
  292.      for example.  Basically it is a way of telling you which working
  293.      directories the server needs to know about in order to handle a
  294.      checkout of the specified modules.
  295.      For example, suppose that the server has a module defined by
  296.           aliasmodule -a 1dir
  297.      That is, one can check out `aliasmodule' and it will take `1dir'
  298.      in the repository and check it out to `1dir' in the working
  299.      directory.  Now suppose the client already has this module checked
  300.      out and is planning on using the `co' request to update it.
  301.      Without using `expand-modules', the client would have two bad
  302.      choices: it could either send information about *all* working
  303.      directories under the current directory, which could be
  304.      unnecessarily slow, or it could be ignorant of the fact that
  305.      `aliasmodule' stands for `1dir', and neglect to send information
  306.      for `1dir', which would lead to incorrect operation.
  307.      With `expand-modules', the client would first ask for the module to
  308.      be expanded:
  309.           C: Root /home/kingdon/zwork/cvsroot
  310.           . . .
  311.           C: Argument aliasmodule
  312.           C: Directory .
  313.           C: /home/kingdon/zwork/cvsroot
  314.           C: expand-modules
  315.           S: Module-expansion 1dir
  316.           S: ok
  317.      and then it knows to check the `1dir' directory and send requests
  318.      such as `Entry' and `Modified' for the files in that directory.
  319. `ci \n'
  320. `diff \n'
  321. `tag \n'
  322. `status \n'
  323. `log \n'
  324. `admin \n'
  325. `history \n'
  326. `watchers \n'
  327. `editors \n'
  328. `annotate \n'
  329.      Response expected: yes.  Actually do a cvs command.  This uses any
  330.      previous `Argument', `Directory', `Entry', or `Modified' requests,
  331.      if they have been sent.  The last `Directory' sent specifies the
  332.      working directory at the time of the operation.  No provision is
  333.      made for any input from the user.  This means that `ci' must use a
  334.      `-m' argument if it wants to specify a log message.
  335. `co \n'
  336.      Response expected: yes.  Get files from the repository.  This uses
  337.      any previous `Argument', `Directory', `Entry', or `Modified'
  338.      requests, if they have been sent.  Arguments to this command are
  339.      module names; the client cannot know what directories they
  340.      correspond to except by (1) just sending the `co' request, and then
  341.      seeing what directory names the server sends back in its
  342.      responses, and (2) the `expand-modules' request.
  343. `export \n'
  344.      Response expected: yes.  Get files from the repository.  This uses
  345.      any previous `Argument', `Directory', `Entry', or `Modified'
  346.      requests, if they have been sent.  Arguments to this command are
  347.      module names, as described for the `co' request.  The intention
  348.      behind this command is that a client can get sources from a server
  349.      without storing CVS information about those sources.  That is, a
  350.      client probably should not count on being able to take the entries
  351.      line returned in the `Created' response from an `export' request
  352.      and send it in a future `Entry' request.  Note that the entries
  353.      line in the `Created' response must indicate whether the file is
  354.      binary or text, so the client can create it correctly.
  355. `rdiff \n'
  356. `rtag \n'
  357.      Response expected: yes.  Actually do a cvs command.  This uses any
  358.      previous `Argument' requests, if they have been sent.  The client
  359.      should not send `Directory', `Entry', or `Modified' requests for
  360.      this command; they are not used.  Arguments to these commands are
  361.      module names, as described for `co'.
  362. `init ROOT-NAME \n'
  363.      Response expected: yes.  If it doesn't already exist, create a CVS
  364.      repository ROOT-NAME.  Note that ROOT-NAME is a local directory
  365.      and *not* a fully qualified `CVSROOT' variable.  The `Root'
  366.      request need not have been previously sent.
  367. `update \n'
  368.      Response expected: yes.  Actually do a `cvs update' command.  This
  369.      uses any previous `Argument', `Directory', `Entry', or `Modified'
  370.      requests, if they have been sent.  The last `Directory' sent
  371.      specifies the working directory at the time of the operation.  The
  372.      `-I' option is not used-files which the client can decide whether
  373.      to ignore are not mentioned and the client sends the
  374.      `Questionable' request for others.
  375. `import \n'
  376.      Response expected: yes.  Actually do a `cvs import' command.  This
  377.      uses any previous `Argument', `Directory', `Entry', or `Modified'
  378.      requests, if they have been sent.  The last `Directory' sent
  379.      specifies the working directory at the time of the operation.  The
  380.      files to be imported are sent in `Modified' requests (files which
  381.      the client knows should be ignored are not sent; the server must
  382.      still process the CVSROOT/cvsignore file unless -I ! is sent).  A
  383.      log message must have been specified with a `-m' argument.
  384. `add \n'
  385.      Response expected: yes.  Add a file or directory.  This uses any
  386.      previous `Argument', `Directory', `Entry', or `Modified' requests,
  387.      if they have been sent.  The last `Directory' sent specifies the
  388.      working directory at the time of the operation.
  389.      To add a directory, send the directory to be added using
  390.      `Directory' and `Argument' requests.  For example:
  391.           C: Root /u/cvsroot
  392.           . . .
  393.           C: Argument nsdir
  394.           C: Directory nsdir
  395.           C: /u/cvsroot/1dir/nsdir
  396.           C: Directory .
  397.           C: /u/cvsroot/1dir
  398.           C: add
  399.           S: M Directory /u/cvsroot/1dir/nsdir added to the repository
  400.           S: ok
  401.      You will notice that the server does not signal to the client in
  402.      any particular way that the directory has been successfully added.
  403.      The client is supposed to just assume that the directory has been
  404.      added and update its records accordingly.  Note also that adding a
  405.      directory is immediate; it does not wait until a `ci' request as
  406.      files do.
  407.      To add a file, send the file to be added using a `Modified'
  408.      request.  For example:
  409.           C: Argument nfile
  410.           C: Directory .
  411.           C: /u/cvsroot/1dir
  412.           C: Modified nfile
  413.           C: u=rw,g=r,o=r
  414.           C: 6
  415.           C: hello
  416.           C: add
  417.           S: E cvs server: scheduling file `nfile' for addition
  418.           S: Mode u=rw,g=r,o=r
  419.           S: Checked-in ./
  420.           S: /u/cvsroot/1dir/nfile
  421.           S: /nfile/0///
  422.           S: E cvs server: use 'cvs commit' to add this file permanently
  423.           S: ok
  424.      Note that the file has not been added to the repository; the only
  425.      effect of a successful `add' request, for a file, is to supply the
  426.      client with a new entries line containing `0' to indicate an added
  427.      file.  In fact, the client probably could perform this operation
  428.      without contacting the server, although using `add' does cause the
  429.      server to perform a few more checks.
  430.      The client sends a subsequent `ci' to actually add the file to the
  431.      repository.
  432.      Another quirk of the `add' request is that with CVS 1.9 and older,
  433.      a pathname specified in an `Argument' request cannot contain `/'.
  434.      There is no good reason for this restriction, and in fact more
  435.      recent CVS servers don't have it.  But the way to interoperate
  436.      with the older servers is to ensure that all `Directory' requests
  437.      for `add' (except those used to add directories, as described
  438.      above), use `.' for LOCAL-DIRECTORY.  Specifying another string for
  439.      LOCAL-DIRECTORY may not get an error, but it will get you strange
  440.      `Checked-in' responses from the buggy servers.
  441. `remove \n'
  442.      Response expected: yes.  Remove a file.  This uses any previous
  443.      `Argument', `Directory', `Entry', or `Modified' requests, if they
  444.      have been sent.  The last `Directory' sent specifies the working
  445.      directory at the time of the operation.
  446.      Note that this request does not actually do anything to the
  447.      repository; the only effect of a successful `remove' request is to
  448.      supply the client with a new entries line containing `-' to
  449.      indicate a removed file.  In fact, the client probably could
  450.      perform this operation without contacting the server, although
  451.      using `remove' may cause the server to perform a few more checks.
  452.      The client sends a subsequent `ci' request to actually record the
  453.      removal in the repository.
  454. `watch-on \n'
  455. `watch-off \n'
  456. `watch-add \n'
  457. `watch-remove \n'
  458.      Response expected: yes.  Actually do the `cvs watch on', `cvs
  459.      watch off', `cvs watch add', and `cvs watch remove' commands,
  460.      respectively.  This uses any previous `Argument', `Directory',
  461.      `Entry', or `Modified' requests, if they have been sent.  The last
  462.      `Directory' sent specifies the working directory at the time of
  463.      the operation.
  464. `release \n'
  465.      Response expected: yes.  Note that a `cvs release' command has
  466.      taken place and update the history file accordingly.
  467. `noop \n'
  468.      Response expected: yes.  This request is a null command in the
  469.      sense that it doesn't do anything, but merely (as with any other
  470.      requests expecting a response) sends back any responses pertaining
  471.      to pending errors, pending `Notified' responses, etc.
  472. `update-patches \n'
  473.      Response expected: yes.  This request does not actually do
  474.      anything.  It is used as a signal that the server is able to
  475.      generate patches when given an `update' request.  The client must
  476.      issue the `-u' argument to `update' in order to receive patches.
  477. `gzip-file-contents LEVEL \n'
  478.      Response expected: no.  Note that this request does not follow the
  479.      response convention stated above.  `Gzip-stream' is suggested
  480.      instead of `gzip-file-contents' as it gives better compression; the
  481.      only reason to implement the latter is to provide compression with
  482.      CVS 1.8 and earlier.  The `gzip-file-contents' request asks the
  483.      server to compress files it sends to the client using `gzip'
  484.      (RFC1952/1951) compression, using the specified level of
  485.      compression.  If this request is not made, the server must not
  486.      compress files.
  487.      This is only a hint to the server.  It may still decide (for
  488.      example, in the case of very small files, or files that already
  489.      appear to be compressed) not to do the compression.  Compression
  490.      is indicated by a `z' preceding the file length.
  491.      Availability of this request in the server indicates to the client
  492.      that it may compress files sent to the server, regardless of
  493.      whether the client actually uses this request.
  494. `wrapper-sendme-rcsOptions \n'
  495.      Response expected: yes.  Request that the server transmit mappings
  496.      from filenames to keyword expansion modes in `Wrapper-rcsOption'
  497.      responses.
  498. `OTHER-REQUEST TEXT \n'
  499.      Response expected: yes.  Any unrecognized request expects a
  500.      response, and does not contain any additional data.  The response
  501.      will normally be something like `error  unrecognized request', but
  502.      it could be a different error if a previous command which doesn't
  503.      expect a response produced an error.
  504.    When the client is done, it drops the connection.
  505. File: cvsclient.info,  Node: Response intro,  Next: Response pathnames,  Prev: Requests,  Up: Protocol
  506. Introduction to Responses
  507. =========================
  508.    After a command which expects a response, the server sends however
  509. many of the following responses are appropriate.  The server should not
  510. send data at other times (the current implementation may violate this
  511. principle in a few minor places, where the server is printing an error
  512. message and exiting--this should be investigated further).
  513.    Any set of responses always ends with `error' or `ok'.  This
  514. indicates that the response is over.
  515.    The responses `Checked-in', `New-entry', `Updated', `Created',
  516. `Update-existing', `Merged', and `Patched' are refered to as "file
  517. updating" responses, because they change the status of a file in the
  518. working directory in some way.  The responses `Mode', `Mod-time', and
  519. `Checksum' are referred to as "file update modifying" responses because
  520. they modify the next file updating response.  In no case shall a file
  521. update modifying response apply to a file updating response other than
  522. the next one.  Nor can the same file update modifying response occur
  523. twice for a given file updating response (if servers diagnose this
  524. problem, it may aid in detecting the case where clients send an update
  525. modifying response without following it by a file updating response).
  526. File: cvsclient.info,  Node: Response pathnames,  Next: Responses,  Prev: Response intro,  Up: Protocol
  527. The "pathname" in responses
  528. ===========================
  529.    Many of the responses contain something called PATHNAME.  The name
  530. is somewhat misleading; it actually indicates a pair of pathnames.
  531. First, a local directory name relative to the directory in which the
  532. command was given (i.e. the last `Directory' before the command).  Then
  533. a linefeed and a repository name.  Then a slash and the filename
  534. (without a `,v' ending).  For example, for a file `i386.mh' which is in
  535. the local directory `gas.clean/config' and for which the repository is
  536. `/rel/cvsfiles/devo/gas/config':
  537.      gas.clean/config/
  538.      /rel/cvsfiles/devo/gas/config/i386.mh
  539.    If the server wants to tell the client to create a directory, then it
  540. merely uses the directory in any response, as described above, and the
  541. client should create the directory if it does not exist.  Note that this
  542. should only be done one directory at a time, in order to permit the
  543. client to correctly store the repository for each directory.  Servers
  544. can use requests such as `Clear-sticky', `Clear-static-directory', or
  545. any other requests, to create directories.
  546.    Some server implementations may poorly distinguish between a
  547. directory which should not exist and a directory which contains no
  548. files; in order to refrain from creating empty directories a client
  549. should both send the `-P' option to `update' or `co', and should also
  550. detect the case in which the server asks to create a directory but not
  551. any files within it (in that case the client should remove the
  552. directory or refrain from creating it in the first place).  Note that
  553. servers could clean this up greatly by only telling the client to
  554. create directories if the directory in question should exist, but until
  555. servers do this, clients will need to offer the `-P' behavior described
  556. above.
  557. File: cvsclient.info,  Node: Responses,  Next: Text tags,  Prev: Response pathnames,  Up: Protocol
  558. Responses
  559. =========
  560.    Here are the responses:
  561. `Valid-requests REQUEST-LIST \n'
  562.      Indicate what requests the server will accept.  REQUEST-LIST is a
  563.      space separated list of tokens.  If the server supports sending
  564.      patches, it will include `update-patches' in this list.  The
  565.      `update-patches' request does not actually do anything.
  566. `Checked-in PATHNAME \n'
  567.      Additional data: New Entries line, \n.  This means a file PATHNAME
  568.      has been successfully operated on (checked in, added, etc.).  name
  569.      in the Entries line is the same as the last component of PATHNAME.
  570. `New-entry PATHNAME \n'
  571.      Additional data: New Entries line, \n.  Like `Checked-in', but the
  572.      file is not up to date.
  573. `Updated PATHNAME \n'
  574.      Additional data: New Entries line, \n, mode, \n, file
  575.      transmission.  A new copy of the file is enclosed.  This is used
  576.      for a new revision of an existing file, or for a new file, or for
  577.      any other case in which the local (client-side) copy of the file
  578.      needs to be updated, and after being updated it will be up to
  579.      date.  If any directory in pathname does not exist, create it.
  580.      This response is not used if `Created' and `Update-existing' are
  581.      supported.
  582. `Created PATHNAME \n'
  583.      This is just like `Updated' and takes the same additional data, but
  584.      is used only if no `Entry', `Modified', or `Unchanged' request has
  585.      been sent for the file in question.  The distinction between
  586.      `Created' and `Update-existing' is so that the client can give an
  587.      error message in several cases: (1) there is a file in the working
  588.      directory, but not one for which `Entry', `Modified', or
  589.      `Unchanged' was sent (for example, a file which was ignored, or a
  590.      file for which `Questionable' was sent), (2) there is a file in
  591.      the working directory whose name differs from the one mentioned in
  592.      `Created' in ways that the client is unable to use to distinguish
  593.      files.  For example, the client is case-insensitive and the names
  594.      differ only in case.
  595. `Update-existing PATHNAME \n'
  596.      This is just like `Updated' and takes the same additional data, but
  597.      is used only if a `Entry', `Modified', or `Unchanged' request has
  598.      been sent for the file in question.
  599.      This response, or `Merged', indicates that the server has
  600.      determined that it is OK to overwrite the previous contents of the
  601.      file specified by PATHNAME.  Provided that the client has correctly
  602.      sent `Modified' or `Is-modified' requests for a modified file, and
  603.      the file was not modified while CVS was running, the server can
  604.      ensure that a user's modifications are not lost.
  605. `Merged PATHNAME \n'
  606.      This is just like `Updated' and takes the same additional data,
  607.      with the one difference that after the new copy of the file is
  608.      enclosed, it will still not be up to date.  Used for the results
  609.      of a merge, with or without conflicts.
  610.      It is useful to preserve an copy of what the file looked like
  611.      before the merge.  This is basically handled by the server; before
  612.      sending `Merged' it will send a `Copy-file' response.  For
  613.      example, if the file is `aa' and it derives from revision 1.3, the
  614.      `Copy-file' response will tell the client to copy `aa' to
  615.      `.#aa.1.3'.  It is up to the client to decide how long to keep this
  616.      file around; traditionally clients have left it around forever,
  617.      thus letting the user clean it up as desired.  But another answer,
  618.      such as until the next commit, might be preferable.
  619. `Rcs-diff PATHNAME \n'
  620.      This is just like `Updated' and takes the same additional data,
  621.      with the one difference that instead of sending a new copy of the
  622.      file, the server sends an RCS change text.  This change text is
  623.      produced by `diff -n' (the GNU diff `-a' option may also be used).
  624.      The client must apply this change text to the existing file.
  625.      This will only be used when the client has an exact copy of an
  626.      earlier revision of a file.  This response is only used if the
  627.      `update' command is given the `-u' argument.
  628. `Patched PATHNAME \n'
  629.      This is just like `Rcs-diff' and takes the same additional data,
  630.      except that it sends a standard patch rather than an RCS change
  631.      text.  The patch is produced by `diff -c' for CVS 1.6 and later
  632.      (see POSIX.2 for a description of this format), or `diff -u' for
  633.      previous versions of CVS; clients are encouraged to accept either
  634.      format.  Like `Rcs-diff', this response is only used if the
  635.      `update' command is given the `-u' argument.
  636.      The `Patched' response is deprecated in favor of the `Rcs-diff'
  637.      response.  However, older clients (CVS 1.9 and earlier) only
  638.      support `Patched'.
  639. `Mode MODE \n'
  640.      This MODE applies to the next file mentioned in `Checked-in'.
  641.      `Mode' is a file update modifying response as described in *Note
  642.      Response intro::.
  643. `Mod-time TIME \n'
  644.      Set the modification time of the next file sent to TIME.
  645.      `Mod-time' is a file update modifying response as described in
  646.      *Note Response intro::.  The TIME is in the format specified by
  647.      RFC822 as modified by RFC1123.  The server may specify any
  648.      timezone it chooses; clients will want to convert that to their
  649.      own timezone as appropriate.  An example of this format is:
  650.           26 May 1997 13:01:40 -0400
  651.      There is no requirement that the client and server clocks be
  652.      synchronized.  The server just sends its recommendation for a
  653.      timestamp (based on its own clock, presumably), and the client
  654.      should just believe it (this means that the time might be in the
  655.      future, for example).
  656. `Checksum CHECKSUM\n'
  657.      The CHECKSUM applies to the next file sent (that is, `Checksum' is
  658.      a file update modifying response as described in *Note Response
  659.      intro::).  In the case of `Patched', the checksum applies to the
  660.      file after being patched, not to the patch itself.  The client
  661.      should compute the checksum itself, after receiving the file or
  662.      patch, and signal an error if the checksums do not match.  The
  663.      checksum is the 128 bit MD5 checksum represented as 32 hex digits
  664.      (MD5 is described in RFC1321).  This response is optional, and is
  665.      only used if the client supports it (as judged by the
  666.      `Valid-responses' request).
  667. `Copy-file PATHNAME \n'
  668.      Additional data: NEWNAME \n.  Copy file PATHNAME to NEWNAME in the
  669.      same directory where it already is.  This does not affect
  670.      `CVS/Entries'.
  671.      This can optionally be implemented as a rename instead of a copy.
  672.      The only use for it which currently has been identified is prior
  673.      to a `Merged' response as described under `Merged'.  Clients can
  674.      probably assume that is how it is being used, if they want to worry
  675.      about things like how long to keep the NEWNAME file around.
  676. `Removed PATHNAME \n'
  677.      The file has been removed from the repository (this is the case
  678.      where cvs prints `file foobar.c is no longer pertinent').
  679. `Remove-entry PATHNAME \n'
  680.      The file needs its entry removed from `CVS/Entries', but the file
  681.      itself is already gone (this happens in response to a `ci' request
  682.      which involves committing the removal of a file).
  683. `Set-static-directory PATHNAME \n'
  684.      This instructs the client to set the `Entries.Static' flag, which
  685.      it should then send back to the server in a `Static-directory'
  686.      request whenever the directory is operated on.  PATHNAME ends in a
  687.      slash; its purpose is to specify a directory, not a file within a
  688.      directory.
  689. `Clear-static-directory PATHNAME \n'
  690.      Like `Set-static-directory', but clear, not set, the flag.
  691. `Set-sticky PATHNAME \n'
  692.      Additional data: TAGSPEC \n.  Tell the client to set a sticky tag
  693.      or date, which should be supplied with the `Sticky' request for
  694.      future operations.  PATHNAME ends in a slash; its purpose is to
  695.      specify a directory, not a file within a directory.  The client
  696.      should store TAGSPEC and pass it back to the server as-is, to
  697.      allow for future expansion.  The first character of TAGSPEC is `T'
  698.      for a tag, `D' for a date, or something else for future expansion.
  699.      The remainder of TAGSPEC contains the actual tag or date.
  700. `Clear-sticky PATHNAME \n'
  701.      Clear any sticky tag or date set by `Set-sticky'.
  702. `Template PATHNAME \n'
  703.      Additional data: file transmission (note: compressed file
  704.      transmissions are not supported).  PATHNAME ends in a slash; its
  705.      purpose is to specify a directory, not a file within a directory.
  706.      Tell the client to store the file transmission as the template log
  707.      message, and then use that template in the future when prompting
  708.      the user for a log message.
  709. `Set-checkin-prog DIR \n'
  710.      Additional data: PROG \n.  Tell the client to set a checkin
  711.      program, which should be supplied with the `Checkin-prog' request
  712.      for future operations.
  713. `Set-update-prog DIR \n'
  714.      Additional data: PROG \n.  Tell the client to set an update
  715.      program, which should be supplied with the `Update-prog' request
  716.      for future operations.
  717. `Notified PATHNAME \n'
  718.      Indicate to the client that the notification for PATHNAME has been
  719.      done.  There should be one such response for every `Notify'
  720.      request; if there are several `Notify' requests for a single file,
  721.      the requests should be processed in order; the first `Notified'
  722.      response pertains to the first `Notify' request, etc.
  723. `Module-expansion PATHNAME \n'
  724.      Return a file or directory which is included in a particular
  725.      module.  PATHNAME is relative to cvsroot, unlike most pathnames in
  726.      responses.  PATHNAME should be used to look and see whether some
  727.      or all of the module exists on the client side; it is not
  728.      necessarily suitable for passing as an argument to a `co' request
  729.      (for example, if the modules file contains the `-d' option, it
  730.      will be the directory specified with `-d', not the name of the
  731.      module).
  732. `Wrapper-rcsOption PATTERN -k 'OPTION' \n'
  733.      Transmit to the client a filename pattern which implies a certain
  734.      keyword expansion mode.  The PATTERN is a wildcard pattern (for
  735.      example, `*.exe'.  The OPTION is `b' for binary, and so on.  Note
  736.      that although the syntax happens to resemble the syntax in certain
  737.      CVS configuration files, it is more constrained; there must be
  738.      exactly one space between PATTERN and `-k' and exactly one space
  739.      between `-k' and `'', and no string is permitted in place of `-k'
  740.      (extensions should be done with new responses, not by extending
  741.      this one, for graceful handling of `Valid-responses').
  742. `M TEXT \n'
  743.      A one-line message for the user.
  744. `Mbinary \n'
  745.      Additional data: file transmission (note: compressed file
  746.      transmissions are not supported).  This is like `M', except the
  747.      contents of the file transmission are binary and should be copied
  748.      to standard output without translation to local text file
  749.      conventions.  To transmit a text file to standard output, servers
  750.      should use a series of `M' requests.
  751. `E TEXT \n'
  752.      Same as `M' but send to stderr not stdout.
  753. `F \n'
  754.      Flush stderr.  That is, make it possible for the user to see what
  755.      has been written to stderr (it is up to the implementation to
  756.      decide exactly how far it should go to ensure this).
  757. `MT TAGNAME DATA \n'
  758.      This response provides for tagged text.  It is similar to
  759.      SGML/HTML/XML in that the data is structured and a naive
  760.      application can also make some sense of it without understanding
  761.      the structure.  The syntax is not SGML-like, however, in order to
  762.      fit into the CVS protocol better and (more importantly) to make it
  763.      easier to parse, especially in a language like perl or awk.
  764.      The TAGNAME can have several forms.  If it starts with `a' to `z'
  765.      or `A' to `Z', then it represents tagged text.  If the
  766.      implementation recognizes TAGNAME, then it may interpret DATA in
  767.      some particular fashion.  If the implementation does not recognize
  768.      TAGNAME, then it should simply treat DATA as text to be sent to
  769.      the user (similar to an `M' response).  There are two tags which
  770.      are general purpose.  The `text' tag is similar to an unrecognized
  771.      tag in that it provides text which will ordinarily be sent to the
  772.      user.  The `newline' tag is used without DATA and indicates that a
  773.      newline will ordinarily be sent to the user (there is no provision
  774.      for embedding newlines in the DATA of other tagged text responses).
  775.      If TAGNAME starts with `+' it indicates a start tag and if it
  776.      starts with `-' it indicates an end tag.  The remainder of TAGNAME
  777.      should be the same for matching start and end tags, and tags
  778.      should be nested (for example one could have tags in the following
  779.      order `+bold' `+italic' `text' `-italic' `-bold' but not `+bold'
  780.      `+italic' `text' `-bold' `-italic').  A particular start and end
  781.      tag may be documented to constrain the tagged text responses which
  782.      are valid between them.
  783.      Note that if DATA is present there will always be exactly one
  784.      space between TAGNAME and DATA; if there is more than one space,
  785.      then the spaces beyond the first are part of DATA.
  786.      Here is an example of some tagged text responses.  Note that there
  787.      is a trailing space after `Checking in' and `initial revision:'
  788.      and there are two trailing spaces after `<--'.  Such trailing
  789.      spaces are, of course, part of DATA.
  790.           MT +checking-in
  791.           MT text Checking in
  792.           MT fname gz.tst
  793.           MT text ;
  794.           MT newline
  795.           MT rcsfile /home/kingdon/zwork/cvsroot/foo/gz.tst,v
  796.           MT text   <--
  797.           MT fname gz.tst
  798.           MT newline
  799.           MT text initial revision:
  800.           MT init-rev 1.1
  801.           MT newline
  802.           MT text done
  803.           MT newline
  804.           MT -checking-in
  805.      If the client does not support the `MT' response, the same
  806.      responses might be sent as:
  807.           M Checking in gz.tst;
  808.           M /home/kingdon/zwork/cvsroot/foo/gz.tst,v  <--  gz.tst
  809.           M initial revision: 1.1
  810.           M done
  811.      For a list of specific tags, see *Note Text tags::.
  812. `error ERRNO-CODE ` ' TEXT \n'
  813.      The command completed with an error.  ERRNO-CODE is a symbolic
  814.      error code (e.g. `ENOENT'); if the server doesn't support this
  815.      feature, or if it's not appropriate for this particular message,
  816.      it just omits the errno-code (in that case there are two spaces
  817.      after `error').  Text is an error message such as that provided by
  818.      strerror(), or any other message the server wants to use.
  819. `ok \n'
  820.      The command completed successfully.
  821. File: cvsclient.info,  Node: Text tags,  Next: Example,  Prev: Responses,  Up: Protocol
  822. Tags for the MT tagged text response
  823. ====================================
  824.    The `MT' response, as described in *Note Responses::, offers a way
  825. for the server to send tagged text to the client.  This section
  826. describes specific tags.  The intention is to update this section as
  827. servers add new tags.
  828.    In the following descriptions, `text' and `newline' tags are
  829. omitted.  Such tags contain information which is intended for users (or
  830. to be discarded), and are subject to change at the whim of the server.
  831. To avoid being vulnerable to such whim, clients should look for the tags
  832. listed here, not `text', `newline', or other tags.
  833.    The following tag means to indicate to the user that a file has been
  834. updated.  It is more or less redundant with the `Created' and
  835. `Update-existing' responses, but we don't try to specify here whether
  836. it occurs in exactly the same circumstances as `Created' and
  837. `Update-existing'.  The NAME is the pathname of the file being updated
  838. relative to the directory in which the command is occurring (that is,
  839. the last `Directory' request which is sent before the command).
  840.      MT +updated
  841.      MT fname NAME
  842.      MT -updated
  843.